home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / utime.c < prev    next >
C/C++ Source or Header  |  1990-01-23  |  2KB  |  69 lines

  1. /* 
  2.  * utime.c --
  3.  *
  4.  *    Compatiblity routine for obsolete function.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/utime.c,v 1.1 90/01/23 14:49:44 douglis Exp $";
  18. #endif /* not lint */
  19.  
  20. #include <sys/time.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * utime --
  26.  *
  27.  *     utime() sets the access and modification times of  the  file
  28.  *     named by file.
  29.  *
  30.  *     If the timep argument is NULL, the access  and  modification
  31.  *     times  are  set  to the current time.  A process must be the
  32.  *     owner of the file or have write permission for the  file  to
  33.  *     use utime() in this manner.
  34.  *
  35.  *     If the timep argument is not NULL, it is assumed to point to
  36.  *     an  array  of  two time_t values.  The access time is set to
  37.  *     the value of the first member, and the modification time  is
  38.  *     set  to the value of the second member.  The times contained
  39.  *     in that array are measured in seconds since 00:00:00 GMT Jan
  40.  *     1,  1970.   Only the owner of the file or the super-user may
  41.  *     use utime() in this manner.
  42.  *
  43.  *     In either case, the ``inode-changed'' time of  the  file  is
  44.  *     set to the current time.
  45.  *
  46.  * Results:
  47.  *
  48.  *      Upon successful completion, a value of 0 is returned.  Otherwise,
  49.  *      a value of -1 is returned and errno is set to indicate the error.
  50.  *
  51.  * Side effects:
  52.  *    
  53.  *
  54.  *----------------------------------------------------------------------
  55.  */
  56. int
  57. utime(file, timep)
  58.         char *file;
  59.         int *timep;
  60. {
  61.         struct timeval tv[2];
  62.  
  63.         tv[0].tv_sec = timep[0];
  64.     tv[0].tv_usec = 0;
  65.         tv[1].tv_sec = timep[1];
  66.     tv[1].tv_usec = 0;
  67.         return utimes(file, tv);
  68. }
  69.